home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / gui / mpgui50.lha / include / clib / MPGui_protos.h
C/C++ Source or Header  |  1996-05-08  |  1KB  |  38 lines

  1. #ifndef CLIB_MPGUI_PROTOS_H
  2. #define CLIB_MPGUI_PROTOS_H
  3.  
  4. /* MPGui - requester library */
  5.  
  6. /* mark@topic.demon.co.uk */
  7. /* mpaddock@cix.compulink.co.uk */
  8.  
  9. /* Prototypes for MPGui.library */
  10.  
  11. /* $VER: MPGui_protos.h 5.0 (6.5.96)
  12.  */
  13.  
  14. #ifndef UTILITY_TAGITEM_H
  15. #include <utility/tagitem.h>
  16. #endif
  17. #ifndef INTUITION_INTUITION_H
  18. #include <intuition/intuition.h>
  19. #endif
  20. #ifndef LIBRARIES_MPGUI_H
  21. #include <libraries/mpgui.h>
  22. #endif
  23.  
  24. struct MPGuiHandle *AllocMPGuiHandleA(struct TagItem * TagList);
  25. struct MPGuiHandle *AllocMPGuiHandle(Tag tag1, ...);
  26. void FreeMPGuiHandle(struct MPGuiHandle * );
  27. char *MPGuiError(struct MPGuiHandle * );
  28. char *SyncMPGuiRequest(char *,struct MPGuiHandle * );
  29. ULONG MPGuiResponse(struct MPGuiHandle *gh);
  30. BOOL SetMPGuiGadgetValue(struct MPGuiHandle *gh,char *Title,char *Value);
  31. char *MPGuiCurrentAttrs(struct MPGuiHandle *gh);
  32. BOOL ReadMPGui(char *fname,struct MPGuiHandle *gh);
  33. BOOL WriteMPGui(char *fname,struct MPGuiHandle *gh);
  34. void RefreshMPGui(struct MPGuiHandle *gh);
  35. struct Window *MPGuiWindow(struct MPGuiHandle *gh);
  36.  
  37. #endif
  38.